* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #333;
}

/* ========== HEADER (Top bar) ========== */
.top-bar {
  z-index: 1001;
  display: flex;
  background-color: #1E1916;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  position: relative;
  ;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  list-style: none;
  align-items: center;
  color: white;
}

.top-bar-left li {
  margin-left: 15px;
  position: relative;
}

/* Thêm dấu "/" giữa các mục */
.top-bar-left li::after {
  content: "/";
  margin-left: 10px;
}

.top-bar-left li:last-child::after {
  content: "";
}

.top-bar-left a {
  color: white;
}

.top-bar-right li {
  margin-right: 20px;
}

.top-bar-right li a {
  color: orange;
  padding: 10px 5px;
  border-right: 2px solid #555;
}

.top-bar-right li:last-child a {
  border-right: none;
}

/* ========== NAV (Main nav) ========== */
.main-nav {
  position: absolute;
  /* ban đầu nằm dưới top-bar */
  background-color: transparent;
  padding: auto;
  top: 0;
  left: 0;
  width: 100%;
  transition: background-color 0.3s ease;
  /* hiệu ứng mượt khi đổi màu */
  background: transparent;
  z-index: 999;
}

/* Khi scroll xuống > 50px */
.main-nav.scrolled {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  /* lên trên nội dung khác */
}

.nav-container {
  padding: 30px 30px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.nav-logo {
  font-size: 40px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  padding: 0 20px;
}

.nav-logo a {
  color: #EAA636;
}

/* Menu */
.nav-menu {
  display: flex;
  align-items: center;
}

.nav-menu a {
  margin: 0 15px;
  color: rgb(255, 255, 255);
  font-weight: 500;
}

.nav-menu a:hover {
  color: orange;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-list {
  display: none;
  position: absolute;
  top: 100%;
  background-color: #f1f1f1;
  min-width: 150px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dropdown-list a {
  display: block;
  padding: 10px;
  color: black;
}

.dropdown-list a:hover {
  color: orange;
  background-color: #eee;
}

.nav-dropdown:hover .dropdown-list {
  display: block;
}

/* Contact */
.nav-contact {
  display: flex;
  align-items: center;
  color: rgb(255, 255, 255);
}

.contact-icon {
  margin: 15px;
  padding: 10px;
  border: 1px solid white;
  border-radius: 100px;
  box-sizing: border-box;
  margin-right: 10px;
  font-size: 20px;
  color: orange;
}

.contact-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.contact-text {
  font-size: 12px;
  color: #555;
}

.contact-number {
  font-size: 16px;
  font-weight: bold;
}

.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Lớp phủ đen */
.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  /* màu đen, 20% trong suốt */
  z-index: 1;
}

/* Nếu bạn có thêm text hoặc nút thì đặt z-index cao hơn overlay */
.hero-section .content {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
}

.hero-section .content {
  position: absolute;
  top: 50%;
  /* căn giữa theo chiều dọc */
  left: 80px;
  /* cách trái 80px */
  transform: translateY(-50%);
  /* chỉ dịch lên 50% chiều cao để căn dọc */
  z-index: 2;
  color: white;
  text-align: left;
  /* nếu muốn căn đều bên trái */
  max-width: 80%;
  padding: 30px;
  /* padding bên trong */
  box-sizing: border-box;
  /* để padding không làm tràn max-width */
}

.hero-section .content h3 {
  position: absolute;
  padding: 0;
  color: orange;
}

.hero-section .content h1 {
  padding: 30px 0 0 0;
  color: white;
}

/* Chữ chính to */
.hero-section .content h1 {
  font-size: 52px;
  /* CHỮ TO */
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Đoạn mô tả nhỏ */
.hero-section .content p {
  font-size: 24x;
  margin-bottom: 30px;
  color: #eee;
}

/* Nút */
.hero-section .content .btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #EAA636;
  color: white;
  border-radius: 25px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
  padding: 1.2rem 3rem;
}

.hero-section .content .btn:hover {
  background-color: #cf8a28;
}





.footer-main {
  background-color: #1E1916;
  color: #fff;
  padding: 40px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-col {
  flex: 1 1 250px;
  margin: 10px;
}

.footer-col h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 15px;
  color: #EAA636;
}

.footer-col p,
.footer-col a {
  color: #ddd;
  font-size: 14px;
  margin: 8px 0;
  display: block;
  transition: 0.3s;
}

.footer-col a:hover {
  color: orange;
}

.footer-social {
  margin-top: 15px;
  display: flex;
  gap: 15px;
}

.footer-social a {
  margin-right: 10px;
  color: orange;
  font-size: 18px;
  transition: 0.3s;

}

.footer-social a:hover {
  color: #fff;
}
.footer-social i{
  padding: 5px;
  border: 1px solid white;
  border-radius: 100px;
  box-sizing: border-box;
  font-size: 15px;
  color: orange;
}

 .carousel {
      position: relative;
      width: 100%;
      height: 100vh; /* full chiều cao màn hình */
      overflow: hidden;
    }
    .slides {
      display: flex;
      width: 300%; /* số ảnh x100% */
      height: 100%;
      transition: transform 0.5s ease-in-out;
    }
    .slides img {
      width: 100%;
      height: 100%;
      object-fit: cover; /* cho ảnh phủ full */
    }
    /* Nút điều hướng */
    .prev, .next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 2rem;
      background: rgba(0,0,0,0.5);
      color: #fff;
      border: none;
      padding: 10px 15px;
      cursor: pointer;
      border-radius: 50%;
    }
    .prev { left: 20px; }
    .next { right: 20px; }
    
.hero-section.half-height {
  height: 50vh;
}

.hero-section.half-height img {
  height: 100%;
  object-fit: cover;
}
  .hero-section.half-height .content {
    display: flex;
    justify-content: center;   /* căn ngang */
    align-items: center;       /* căn dọc */
    height: 100%;              /* full chiều cao section */
  }

.hero-section.half-height .content h3 {
  font-size: 36px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: rgb(0, 0, 0);
  margin: 0;
}

.hero-section.half-height .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}
.privacy-section {
  background-color: #fff7f1;
  padding: 60px 20px;
}

.privacy-container {
  max-width: 900px;
  margin: auto;
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.privacy-container h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: #EAA636;
  text-align: center;
  margin-bottom: 20px;
}

.privacy-intro {
  text-align: center;
  margin-bottom: 30px;
  color: #555;
  font-size: 16px;
}

.privacy-item {
  margin-bottom: 30px;
}

.privacy-item h3 {
  color: #EAA636;
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: bold;
}

.privacy-item p,
.privacy-item ul {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

.privacy-item ul {
  padding-left: 20px;
  list-style-type: disc;
}

.privacy-item a {
  color: #EAA636;
  text-decoration: underline;
}

.privacy-item a:hover {
  color: #cf8a28;
}




/* Body của index */
 .content h2 {
      margin: 40px 0 20px;
      font-size: 28px;
      font-weight: bold;
      text-align: center;
    }

    .places {
      display: grid;
      grid-template-columns: repeat(3, 1fr); /* 3 cột */
      gap: 20px;
      justify-items: center;
      padding: 20px;
      max-width: 800px;  /* rộng hơn để chứa 3 cột */
      margin: 0 auto;
}

    .card {
      position: relative;
      width: 200px;
      height: 200px;
      border-radius: 15px;
      overflow: hidden;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
      transition: transform 0.3s;
      
    }

    .card:hover {
      transform: scale(1.05);
    }

    .card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .card .info {
      position: absolute;
      bottom: 10px;
      left: 10px;
      color: white;
      text-align: left;
      font-size: 16px;
      font-weight: bold;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
    }

    .card .info span {
      display: block;
      font-size: 14px;
      font-weight: normal;
    }
    /* ===== FOOD SECTION ===== */

/* Tiêu đề chính */
h1 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  text-align: center;
  margin: 40px 0 30px;
  color: #222;
  font-weight: 700;
  position: relative;
}

h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #f39c12;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Khung món ăn */
.food {
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Tiêu đề từng món */
.food h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 16px;
  color: #1a1a1a;
  border-left: 5px solid #f39c12;
  padding-left: 12px;
}

/* Box chữ + ảnh */
.food-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.food-content {
  flex: 1;
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

.food-content ul {
  margin-top: 10px;
  padding-left: 20px;
  list-style: disc;
}

/* Hình ảnh */
.food-img {
  flex: 1;
}

.food-img img {
  width: 100%;
  max-width: 450px;   /* khống chế chiều ngang */
  height: 300px;      /* khung ảnh cố định */
  border-radius: 10px;
  object-fit: cover;  /* tự động crop ảnh cho đẹp */
  display: block;
  margin: 0 auto;     /* căn giữa nếu nhỏ hơn khung */
}


/* Responsive: trên desktop chữ + ảnh ngang hàng */
@media (min-width: 768px) {
  .food-box {
    flex-direction: row;
    align-items: flex-start;
  }

  /* Hiệu ứng ziczac: món chẵn ảnh trước, chữ sau */
  .food:nth-child(even) .food-box {
    flex-direction: row-reverse;
  }
}


    /* ===== TRAVEL SECTION ===== */

/* Tiêu đề chính */
h1 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  text-align: center;
  margin: 40px 0 30px;
  color: #222;
  font-weight: 700;
  position: relative;
}

h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #f39c12;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Khung món ăn */
.travel {
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Tiêu đề từng món */
.travel h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 16px;
  color: #1a1a1a;
  border-left: 5px solid #f39c12;
  padding-left: 12px;
}

/* Box chữ + ảnh */
.travel-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.travel-content {
  flex: 1;
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

.travel-content ul {
  margin-top: 10px;
  padding-left: 20px;
  list-style: disc;
}

/* Hình ảnh */
.travel-img {
  flex: 1;
}

.travel-img img {
  width: 100%;
  max-width: 450px;   /* khống chế chiều ngang */
  height: 300px;      /* khung ảnh cố định */
  border-radius: 40px;
  padding: 20px;
  object-fit: cover;  /* tự động crop ảnh cho đẹp */
  display: block;
  margin: 0 auto;     /* căn giữa nếu nhỏ hơn khung */
}


/* Responsive: trên desktop chữ + ảnh ngang hàng */
@media (min-width: 768px) {
  .travel-box {
    flex-direction: row;
    align-items: flex-start;
  }

  /* Hiệu ứng ziczac: món chẵn ảnh trước, chữ sau */
  .travel:nth-child(even) .travel-box {
    flex-direction: row-reverse;
  }
}



